Transport Mechanism
Enum to identify which transport mechanism this packet arrived over
Content copied to clipboard
meshtastic.MeshPacket.TransportMechanism
Entries
Properties
Link copied to clipboard
Arrived via API connection
Content copied to clipboard
TRANSPORT_API = 7;
Link copied to clipboard
The default case is that the node generated a packet itself
Content copied to clipboard
TRANSPORT_INTERNAL = 0;
Link copied to clipboard
Arrived via a secondary LoRa radio
Content copied to clipboard
TRANSPORT_LORA_ALT1 = 2;
Link copied to clipboard
Arrived via a tertiary LoRa radio
Content copied to clipboard
TRANSPORT_LORA_ALT2 = 3;
Link copied to clipboard
Arrived via a quaternary LoRa radio
Content copied to clipboard
TRANSPORT_LORA_ALT3 = 4;
Link copied to clipboard
Arrived via the primary LoRa radio
Content copied to clipboard
TRANSPORT_LORA = 1;
Link copied to clipboard
Arrived via an MQTT connection
Content copied to clipboard
TRANSPORT_MQTT = 5;
Link copied to clipboard
Arrived via Multicast UDP
Content copied to clipboard
TRANSPORT_MULTICAST_UDP = 6;
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Link copied to clipboard
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.